home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2 - Developers' Solutions / Delphi 2 Developers' Solutions.iso / dds / chap05 / howto02 / delphi10 / pprevun.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1995-11-26  |  461 b   |  29 lines

  1. unit Pprevun;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, ExtCtrls, StdCtrls, Buttons;
  8.  
  9. type
  10.   TPrintPreviewForm = class(TForm)
  11.     Panel1: TPanel;
  12.     Panel2: TPanel;
  13.     Image1: TImage;
  14.     BitBtn1: TBitBtn;
  15.   private
  16.     { Private declarations }
  17.   public
  18.     { Public declarations }
  19.   end;
  20.  
  21. var
  22.   PrintPreviewForm: TPrintPreviewForm;
  23.  
  24. implementation
  25.  
  26. {$R *.DFM}
  27.  
  28. end.
  29.